home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / hips / sources / vfft / makefile.src < prev    next >
Encoding:
Makefile  |  1993-08-23  |  654 b   |  37 lines

  1. #
  2. # makefile for user-contributed/lbl/hips/sources/vfft
  3. #
  4.  
  5. PGM2 = dcvtob.out vfft.out
  6. PGMS = inv-vfft.out pattern.out vfftfilter.out vfftpass.out $(PGM2)
  7.  
  8. PUBLICLIB = -lccs $(LIBRARY) $(OTHERLIBS) $(OTHERLIB2)
  9. LIBRARIES = $(LDFLAGS) -lscs1 $(PUBLICLIB)
  10. LIBRARIE2 = $(LDFLAGS) -lscs2 $(PUBLICLIB) -lrle
  11. CPPFLAGS2 = -I$(CCS_ROOT)/include -DHIPS_IMAGE -DFITS_IMAGE -DRLE_IMAGE
  12.  
  13. install:    $(PGMS)
  14.  
  15. .c.out:
  16.     $(LINKc) $* $< $(LIBRARIES) $(CPPFLAGS2)
  17.     strip $*
  18.     mv $* $(DESTDIR)
  19.     @touch $@
  20.  
  21. $(PGM2):
  22.     $(LINKc) $* $< $(LIBRARIE2) $(CPPFLAGS2)
  23.     strip $*
  24.     mv $* $(DESTDIR)
  25.     @touch $@
  26.  
  27. clean:    clean-pgm
  28. clean-all:    clean_all
  29.  
  30. man:
  31.  
  32. doc:
  33.  
  34. pristine:    pristine-pgm
  35.  
  36. FRC:
  37.